Useful python for visualising neutron data in jupyter

SCIPP

Data framework for neutron TOF data

In [73]:
import scipp as sc
import mantid.simpleapi as manty
import plotly.graph_objs as go
import numpy as np
In [74]:
from scipp import Dim
In [75]:
d = sc.Dataset(
   ....:         {'a': sc.Variable(dims=[Dim.X, Dim.Y], values=np.random.rand(1000, 1000)),
   ....:          'b': sc.Variable(1.0)},
   ....:          coords={
   ....:              Dim.X: sc.Variable([Dim.X], values=np.arange(1000.0), unit=sc.units.m),
   ....:              Dim.Y: sc.Variable([Dim.Y], values=np.arange(1000.0), unit=sc.units.us)},
   ....:          labels={
   ....:              'aux': sc.Variable([Dim.Y], values=np.random.rand(1000))})
In [53]:
print(d)
sc.plot(d)
<scipp.Dataset>
Dimensions: {{Dim.Y, 1000}, {Dim.X, 1000}}
Coordinates:
    Dim.X                     double    [m]              (Dim.X)
    Dim.Y                     double    [μs]            (Dim.Y)
Labels:
    aux                       double    [dimensionless]  (Dim.Y)
Data:
    a                         double    [dimensionless]  (Dim.X, Dim.Y)
    b                         double    [dimensionless]  ()
Attributes:


Load a ISIS datafile as a mantid workspace object.

  • Use dir as way to list all the available method that object 'out' has
In [54]:
data = manty.Load('/home/jon/Sandbox/Data/MAR19717.raw')
In [143]:
def workspace2dToDataSet(workspace):
    signal = mtd[workspace].extractY()
    error  = mtd[workspace].extractE()
    TOF    = mtd[workspace].extractX()[0]
    wkspDim=signal.shape

    TOFAxis=(TOF[0:wkspDim[1]])
    d = sc.Dataset(
        {'data': sc.Variable(dims=[Dim.X, Dim.Y], values=signal),
        },
        coords={
        Dim.X: sc.Variable([Dim.X], values=np.arange(signal.shape[0]), unit=sc.units.m),
        Dim.Y: sc.Variable([Dim.Y], values=TOFAxis, unit=sc.units.us)},
        )
    print(d)
    return d
In [ ]:
 
In [145]:
d = workspace2dToDataSet('data')
<scipp.Dataset>
Dimensions: {{Dim.Y, 1900}, {Dim.X, 922}}
Coordinates:
    Dim.X                     int64     [m]              (Dim.X)
    Dim.Y                     double    [μs]            (Dim.Y)
Labels:
Data:
    data                      double    [dimensionless]  (Dim.X, Dim.Y)
Attributes:


In [146]:
sc.plot(d)

Making a simple UI to views the help documentation for the 2000 methods in the Mantid api

  1. Import ipywidgets
  2. Import mantid simple api
In [6]:
import ipywidgets as ipw
mantidList=(dir(manty))
from mantid.simpleapi import *

algorithum_list = ipw.Dropdown(
    options = mantidList,
    description='Mantid Simple API algorithums',
    disabled=False,
)


helpButton=ipw.Button(value=False,
    description='MantidHelp',
    disabled=False,
    button_style='info', # 'success', 'info', 'warning', 'danger' or ''
    tooltip='Description',
    icon='?')

display(algorithum_list)
display(helpButton)

out = ipw.Output(layout={'border': '1px solid black'})
display(out)

@out.capture()
def on_button_clicked(b):
    help(globals()[algorithum_list.get_interact_value()])

    
helpButton.on_click(on_button_clicked)

Import some helper scripts that can be used to reduce (treat) TOF neutron data from the MARI instrument

  • qtigenie is a sript that has the iliad function that will convert neutron TOF data to energy transfer data

  • This converts the units of Time of Flight in micro seconds to Energy Transfer in meV

In [7]:
import sys

sys.path.append('/home/jon/Sandbox/Scripts/qtiGenie/')
sys.path.append('/home/jon/Sandbox/Scripts/MARI/')
sys.path.append('/home/jon/Sandbox/Scripts/MARI/MapFiles/')

pathToData='/home/jon/Sandbox/Data/'

from qtiGenie import iliad
import ipywidgets as widgets
Using qtiplot graphics
You can change it by issuing setinst(InstrumentName) command
where InstrumentName can be MER, MAR, MAP, LET, TSK or XSD
In [8]:
from Direct.DirectEnergyConversion import *
import Direct.dgreduce as dgreduce

iliad_setup=dgreduce.setup
iliad=dgreduce.arb_units
iliad_abs=dgreduce.abs_units
    
iliad_reducer = dgreduce.getReducer

#@out.capture()
def reduceSimple(runNumber):
    inst='mar'
    iliad_setup(inst)
    ext='.raw'
    #mapfile='mari_res2013'
    mapfile='/home/jon/Sandbox/Scripts/MARI/MapFiles/mari_121_cor'

    #det_cal_file must be specified if the reduction sends out put to a workpsace
    cal_file=pathToData+'MAR19717.raw'
    #hard mask file
    #mask_file='/home/mari/Users/taylor/mask.msk'
    #load vanadium file
    whitebeamfile=pathToData+'MAR19717.raw'
    LoadRaw(Filename=whitebeamfile,OutputWorkspace="wb_wksp",LoadLogFiles="0")

    runs=pathToData+'MAR'+str(runNumber)+'.raw'; ei=12; rebin_params='-10,.05,11'; sum=False
    LoadRaw(Filename=runs,OutputWorkspace="run_wksp",LoadLogFiles="0")
    w1=iliad("wb_wksp","run_wksp",ei,rebin_params,mapfile,fixei=False,det_cal_file=cal_file,norm_method='current')

We could call reduce simple in a cell Instead we can make a small UI to run it for us using a widget and sending the output to a text widget with @capture

In [9]:
button1 = widgets.Button(description="Reduce Data")
display(button1)

button2 = widgets.Button(description="Clear")
display(button2)

text_field=widgets.Text(value='run number')
display(text_field)

TextOutput = widgets.Output(layout={'border': '1px solid black'})
display(TextOutput)

@TextOutput.capture()
def on_button_clicked(b):
    runNumber = text_field.value
    print ('Running Iliad on file ',runNumber)
    reduceSimple(runNumber)
    ei = mtd['w1'].getRun().getLogData("Ei").value
    print('Incident Neutron Energy for run', runNumber,' determined as ',ei,'meV')

@TextOutput.capture()
def on_clear_clicked(b):
    TextOutput.clear_output()
  
    

button1.on_click(on_button_clicked)
button2.on_click(on_clear_clicked)

The mantid workspace has all the instrument & run meta data

  • We will get the calculated incident energy from the workspace object
In [11]:
incident_energy=mtd['w1'].getRun().getLogData("Ei").value
print (incident_energy,'meV')
12.045315866660905 meV

We will make a UI to list and plot all the mantid workspaces that exisit in the kernal session

In [12]:
%matplotlib inline
import matplotlib.pyplot as plt


mtd.importAll()
workSpaceList = %who_ls Workspace2D
workSpaceListWidget = widgets.Dropdown(
    options=workSpaceList,
    description='WorkSpace:',
    disabled=False,
)

buttonSelectWorkspace = widgets.Button(description="Select Workspace",layout=widgets.Layout(width='auto', grid_area='main'))
#display(buttonPlotSpectrum)

buttonPlotSpectrum = widgets.Button(description="plot spectrum",layout=widgets.Layout(width='auto', grid_area='main'))
#display(buttonPlotSpectrum)

buttonPlot2D = widgets.Button(description="plot 2D",layout=widgets.Layout(width='auto', grid_area='main'))
#display(buttonPlot2D)

clearPlots = widgets.Button(description="ClearPlots",layout=widgets.Layout(width='auto', grid_area='main'))
#display(buttonPlot2D)

text_field_spec = widgets.Text(value='Spectrum_number')

PlotOutput = widgets.Output(layout={'border': '1px solid black'})

TextOutput = widgets.Output(layout={'border': '1px solid black'})


list_widgets  = [
    widgets.VBox([workSpaceListWidget,buttonSelectWorkspace,TextOutput]),
    widgets.VBox([buttonPlotSpectrum,text_field_spec]),
    buttonPlot2D, widgets.VBox([clearPlots, PlotOutput])]

accordion = widgets.Accordion(children=list_widgets)
accordion.set_title(0, 'Select Data')
accordion.set_title(1, '1D Plot')
accordion.set_title(2, '2D Plot')
accordion.set_title(3, 'Plot Output')
display(accordion)

@PlotOutput.capture()
def on_plotSpectrum_button_clicked(a):
    specNumber = int(text_field_spec.value)
    print (type (specNumber),specNumber)
    selectedWorkspace = workSpaceListWidget.value
    dataY = mtd[selectedWorkspace].extractY()
    plt.figure()
    plt.plot(dataY[specNumber,:])
    plt.show()

    
@PlotOutput.capture()
def on_plot2D_button_clicked(b):
    
    selectedWorkspace = workSpaceListWidget.value
    dataY = mtd[selectedWorkspace].extractY()
    plt.figure()
    plt.imshow(dataY,vmin=0,vmax=10,aspect='auto')
    plt.show() 
    
@PlotOutput.capture()
def on_clearPlots_button_clicked(c):
    plt.close('all')
    PlotOutput.clear_output()

@PlotOutput.capture()
def on_clear_clicked(d):
    out.clear_output()
  
@TextOutput.capture()
def on_buttonSelectWorkspace_button_clicked(e):
    selectedWorkspace = workSpaceListWidget.value
    dataY = mtd[selectedWorkspace].extractY()
    print (dataY.shape)
    return dataY,selectedWorkspace
 
   

buttonPlotSpectrum.on_click(on_plotSpectrum_button_clicked)
buttonPlot2D.on_click(on_plot2D_button_clicked)
clearPlots.on_click(on_clearPlots_button_clicked)

Visualising neutron TOF data

Holoviews is a very adaptable visualisation package

  • It requires a defined data structure
  • Pandas ( for Tabular data)
  • Xarray for gridded data

What is useful about these types of packages is that the data structure is well defined with diminesion names to make subsequent operations more straighforwards

There are limitations, xarray doesn't know about errors or anything that specific to neutron or photon data like scientific units or geometry.

  1. First load some data.
  2. Write a small function that converts the TOF and signal values from a mantid workspace to a holoviews dataset.
In [16]:
def mantidWkspToHoloViewDataSet(wkspname):
    import holoviews as hv
    signal = mtd[wkspname].extractY()
    error  = mtd[wkspname].extractE()
    TOF    = mtd[wkspname].extractX()
    wkspDim=signal.shape
    dataCopy=np.zeros([wkspDim[0],wkspDim[1],2])
    dataCopy[:,:,0]=signal
    dataCopy[:,:,1]=error
    ds = hv.Dataset((np.arange(wkspDim[1]),np.arange(wkspDim[0]),dataCopy[:,:,0]),['x', 'y'], 'Counts')
    #ingore errors
    return ds
In [24]:
import holoviews as hv
from holoviews import opts


hvDs = mantidWkspToHoloViewDataSet('w1')


points = hvDs.to(hv.Image)
points.opts(width=500, height=500)
Out[24]:

So when we plot the 2d data we dont know really anything about the axis. That has to be added by the user, or by using a different data structure

Also note that the color mapping of the z axis does not make it easy to visualise. At first glance it looks like a sparse data set.

  • This scaling issue of Z in 2D plots is common in visualistaion of scientific data. Most packages assume that the dynamic range of the data is low. When in this case (inelastic neutron scattering it is not)

  • We can uses the functionality of holoviews to make a data explorer widget.

Lets write a 'super plot' function.

In [20]:
import holoviews as hv
from holoviews import opts
hv.extension('bokeh')

opts.defaults(
    opts.GridSpace(shared_xaxis=True, shared_yaxis=True),
    opts.Image(cmap='jet', width=500, height=500),
    opts.Labels(text_color='white', text_font_size='8pt', text_align='left', text_baseline='bottom'),
    opts.Path(color='white'),
    opts.Spread(width=600),
    opts.Overlay(show_legend=False),
    )
def superplot1(wksp):
    hvDs = mantidWkspToHoloViewDataSet(wksp)
    img = hvDs.to(hv.Image).opts(colorbar=True, colorbar_position = 'left')

    posy = hv.streams.PointerY()
    hline = hv.DynamicMap(lambda y: hv.HLine(y or -100), streams=[posy])

    posx = hv.streams.PointerX()
    vline = hv.DynamicMap(lambda x: hv.VLine(x or -100), streams=[posx])


    crosssection2 = hv.DynamicMap(lambda y: img.sample(y=y if y else 0), streams=[posy])
    crosssection1 = hv.DynamicMap(lambda x: img.sample(x=x if x else 0), streams=[posx])

# Combine images, vline and cross-sections
#((img1 * hline * vline) << crosssection1)+((img1 * vline) << crosssection1)

    return ((img * hline * vline) << crosssection1 << crosssection2)
In [21]:
superplot1('w1')
Out[21]:

The lowest value of the color map does not capture the fine detail in the plot.

we could use a log fucntion, or we could play with the Z scale itself. This however actually sucks

  • Everytime a plot is made the z axis must be evaluated
  • In code thats rubbish.

There is another way - Shade the data

In [47]:
import numpy as np
import holoviews as hv
from holoviews import opts
from holoviews import streams
from matplotlib import cm
hv.extension('bokeh')

from holoviews.operation.datashader import datashade

opts.defaults(
    opts.GridSpace(shared_xaxis=True, shared_yaxis=True),
    opts.Image(cmap='jet', width=700, height=700),
    opts.Labels(text_color='white', text_font_size='8pt', text_align='left', text_baseline='bottom'),
    opts.Path(color='white'),
    opts.Spread(width=600),
    opts.Overlay(show_legend=False),
    )


ds = mantidWkspToHoloViewDataSet('w1')



#datashade(ds)
points = ds.to(hv.Image).opts(width=300, height=300)
shaded = datashade(points,cmap=cm.viridis).opts(width=300, height=300)
points + shaded
Out[47]:

The visual difference between the shaded and not shaded data is apparent

We will rewrite the super plot to use data shader with a linear colormap from Matplotlib
In [22]:
import numpy as np
import holoviews as hv
from holoviews import opts
from holoviews import streams

from holoviews.operation.datashader import datashade

from matplotlib import cm

hv.extension('bokeh')

opts.defaults(
    opts.GridSpace(shared_xaxis=True, shared_yaxis=True),
    opts.Image(cmap='jet', width=700, height=700),
    opts.Labels(text_color='white', text_font_size='8pt', text_align='left', text_baseline='bottom'),
    opts.Path(color='white'),
    opts.Spread(width=600),
    opts.Overlay(show_legend=False),
    )
opts.defaults(opts.Histogram(framewise=True))

#ds = hv.Dataset((np.arange(2624),np.arange(922),dataCopy[:,:,0]),['x', 'y'], 'Counts')
#ds.data

#def holoViewInteractive2D(hvDataSet):
    # Declare distribution of Points

def superplot2(wksp):    
    hvDs = mantidWkspToHoloViewDataSet(wksp)
    points = hvDs.to(hv.Image)
    points.opts(colorbar=True, colorbar_position = 'left')

    # Declare a Bounds stream and DynamicMap to get box_select geometry and draw it
    box = streams.BoundsXY(source=points, bounds=(0,0,0,0))
    bounds = hv.DynamicMap(lambda bounds: hv.Bounds(bounds), streams=[box])

    # Declare DynamicMap to apply bounds selection
    dmap = hv.DynamicMap(lambda bounds: points.select(x=(bounds[0], bounds[2]),y=(bounds[1], bounds[3])),streams=[box])

    # Compute histograms of selection along x-axis and y-axis
    yhist = hv.operation.histogram(dmap, bin_range=points.range('y'), dimension='y', num_bins = 500, weight_dimension='Counts', mean_weighted=True)
    xhist = hv.operation.histogram(dmap, bin_range=points.range('x'), dimension='x', num_bins = 500, weight_dimension='Counts', mean_weighted=True)


    #hv.Curve(selection.aggregate('Time', np.mean))

    #roi = ds.select(x=(bounds[0], bounds[2]),y=(bounds[1], bounds[3]), ).relabel('ROI')
    #region = roi.to(hv.Image, ['x', 'y'])

    # Combine components and display
    #points * mean_sel * bounds << yhist << xhist

    shaded = datashade(points,cmap=cm.viridis).opts(width=500, height=500)
    return (shaded * bounds) << yhist << xhist
    

#holoViewInteractive2D(hvDs)
In [23]:
superplot2('w1')
The keyword argument 'parallel=True' was specified but no transformation for parallel execution was possible.

To find out why, try turning on parallel diagnostics, see http://numba.pydata.org/numba-doc/latest/user/parallel.html#diagnostics for help.

File "../../../lib/python3.6/site-packages/datashader/resampling.py", line 235:
@ngjit_parallel
def _get_dimensions(src, out):
^

invalid value encountered in true_divide
Out[23]:
Now that looks better without having to think of the z axis scale.
Adding histograms rather than line plots allows better evaluation of the structre of the data
  • Now we can convert the data from a grid to Momemtum Transfer (|Q|)
In [45]:
Qdata=SofQWNormalisedPolygon(InputWorkspace=w1,QAxisBinning='0,0.01,5',Emode='Direct',EFixed=12,ReplaceNaNs = True)
In [46]:
superplot2('Qdata')
invalid value encountered in true_divide
Out[46]:
  • Holowviews can be easily used to buld up complex publication quality plots
  • Having a note book environment allows all the data reduction and visualisation processing to be saved and documented
  • in a variety of formats.

There are many python packages for data analysis and modelling.

What is important is to be able to save the meta data for a model in a defined format

  • Interoperability between softwares is benificial

This is the motivation for the Atomic Simulation Environment (ASE)

  • A python Package that acts as a abstraction layer between simulation codes and python

  • Lets use that to run a quick simulation of the Phonon modes in Aluminium.

  • For inelastic sccattering where ther signal is always small its a good idea to know what contributions can come from common materials found in the experiment like Aluminium

In [25]:
from ase.build import bulk
from ase.calculators.emt import EMT
from ase.phonons import Phonons

# Setup crystal and EMT calculator
atoms = bulk('Al', 'fcc', a=4.05)

# Phonon calculator
N = 7
ph = Phonons(atoms, EMT(), supercell=(N, N, N), delta=0.05)
ph.run()

# Read forces and assemble the dynamical matrix
ph.read(acoustic=True)
ph.clean()

path = atoms.cell.bandpath('GXULGK', npoints=100)
bs = ph.get_band_structure(path)

dos = ph.get_dos(kpts=(20, 20, 20)).sample_grid(npts=100, width=1e-3)
Writing phonon.eq.pckl
Writing phonon.0x-.pckl
Writing phonon.0x+.pckl
Writing phonon.0y-.pckl
Writing phonon.0y+.pckl
Writing phonon.0z-.pckl
Writing phonon.0z+.pckl
In [26]:
# Plot the band structure and DOS:
%matplotlib inline
import matplotlib.pyplot as plt


fig = plt.figure(1, figsize=(7, 4))
ax = fig.add_axes([.12, .07, .67, .85])

emax = 0.035
bs.plot(ax=ax, show=False, emin=0.0, emax=emax)
aa=bs.todict()
aa.keys
dosax = fig.add_axes([.8, .07, .17, .85])
dosax.fill_between(dos.weights[0], dos.energy, y2=0, color='grey',edgecolor='k', lw=1)

dosax.set_ylim(0, emax)
dosax.set_yticks([])
dosax.set_xticks([])
dosax.set_xlabel("DOS", fontsize=18)
Out[26]:
Text(0.5, 0, 'DOS')
In [27]:
from ase.visualize import view
view(atoms,viewer='ngl')
In [ ]:
 

Data Management from within jupyter

We can connect our jupyter session to a data catalouge and then search the catalouge.

In [29]:
import requests
import json
import urllib

def search_scicat(text, max_number_results):
    fields = {'text': text}
    limit = {'limit': max_number_results, 'order': "creationTime:desc"}
    fields_encode = urllib.parse.quote(json.dumps(fields))
    limit_encode = urllib.parse.quote(json.dumps(limit))
    dataset_url = "https://scicatapi.esss.dk/api/v3/Datasets/anonymousquery?fields=" + \
                fields_encode+"&limits="+limit_encode
    r=requests.get(dataset_url).json()
    print(len(r), "result found!")
    return r
In [33]:
results=search_scicat("Al",100)
63 result found!

There are 63 results found with the keyword 'Al' the results data object contains all of the meta data locations for those results.

In [36]:
results
Out[36]:
[{'owner': 'Clement Derrez',
  'ownerEmail': 'Clement.Derrez@esss.se',
  'contactEmail': 'Clement.Derrez@esss.se',
  'sourceFolder': '/users/detector/experiments/beamInstrumentation/FMC-PICO-evaluation',
  'size': 1792968,
  'packedSize': 1792968,
  'creationTime': '2019-03-29T10:02:27.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['BeamInstrumentation', 'neutron', 'detector'],
  'description': 'This data was collected as part of the beam instrumentation program https://github.com/ess-dmsc/ess_file_formats/wiki/HDF5',
  'datasetName': 'Sample Data from BeamInstrumentation 3',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:51:21.959Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2029-03-29T09:02:27.966Z',
   'archiveRetentionTime': '2029-03-29T09:02:27.966Z',
   'dateOfPublishing': '2022-03-29T09:02:27.966Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Clement Derrez',
  'creationLocation': 'BeamInstrumentation',
  'scientificMetadata': {'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0_OC/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0_OC/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG0_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1_OC/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1_OC/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH1_RNG1_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0_OC/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0_OC/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG0_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1_OC/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1_OC/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH2_RNG1_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0_OC/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0_OC/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG0_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1_OC/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1_OC/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH3_RNG1_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0_OC/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0_OC/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG0_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1_OC/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1_OC/FMC SN': '18001',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18001_CH4_RNG1_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0/ion chamber SN': 'HCBLM I001-05005107',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0_OC/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0_OC/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG0_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1/ion chamber SN': 'HCBLM I001-05005107',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1_OC/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1_OC/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH1_RNG1_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0/ion chamber SN': 'HCBLM I001-05005107',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0_OC/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0_OC/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG0_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1/ion chamber SN': 'HCBLM I001-05005107',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1_OC/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1_OC/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH2_RNG1_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0/ion chamber SN': 'HCBLM I001-05005107',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0_OC/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0_OC/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG0_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1/ion chamber SN': 'HCBLM I001-05005107',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1_OC/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1_OC/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH3_RNG1_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0/ion chamber SN': 'HCBLM I001-05005107',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0_OC/Channel_range': '0',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0_OC/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG0_OC/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1/ion chamber SN': 'HCBLM I001-05005107',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1/Load': '100m AMGAB + IC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1/Data type': 'FLoat32',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1_OC/Channel_range': '1',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1_OC/Sampling rate': '1000000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1_OC/Nb of points': '10000',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1_OC/FMC SN': '18002',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1_OC/FMC VERSION': 'FMC-Pico-1m4-C3',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1_OC/Operator': 'Clement Derrez',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1_OC/Location': 'BD lab room 4',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1_OC/mTCA crate ID': '675',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1_OC/Load': 'OC',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1_OC/Unit': 'A',
   'FMC-PICO/FMC-Pico-1m4-C3/18002_CH4_RNG1_OC/Data type': 'FLoat32',
   'datetime': '2019-04-30T11:49:41.552Z'},
  'endTime': '2019-03-29T10:02:27.966Z',
  'proposalId': 'MRV1E2',
  'sampleId': 'samplebeaminstrumentation0003',
  'pid': '20.500.12269/BRIGHTNESS/BeamInstrumentation0003'},
 {'owner': 'Anton Khaplanov',
  'ownerEmail': 'anton.khaplanov@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0002-8421-1184',
  'contactEmail': 'anton.khaplanov@esss.se',
  'sourceFolder': '/users/detector/experiments/multigrid/data/raw/SNS_Aug18/efu_dump/9-3 14-36 Si_Crystal',
  'size': 3163499664,
  'packedSize': 3163499664,
  'creationTime': '2018-09-04T16:39:43.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['multigrid', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/Multigrid-Data-Format-I',
  'datasetName': 'Sample Data from multigrid 32',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:43.276Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-09-04T16:39:43.000Z',
   'archiveRetentionTime': '2028-09-04T16:39:43.000Z',
   'dateOfPublishing': '2021-09-04T16:39:43.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Anton Khaplanov',
  'creationLocation': 'multigrid',
  'scientificMetadata': {'Time': '2018-09-02 16:40:31.596',
   'BL17:CS:IPTS': '21308.0',
   'BL17:CS:RunControl:LastRunNumber': '154380.0',
   'BL17:Chop:Skf1:EnergyReq': {'u': 'MeV', 'v': '250.0'},
   'BL17:Chop:Skf1:SpeedReq': {'u': 'Hz', 'v': '30.0'},
   'BL17:Chop:Skf2:EnergyReq': {'u': 'MeV', 'v': '250.0'},
   'BL17:Chop:Skf2:SpeedReq': {'u': 'Hz', 'v': '120.0'},
   'BL17:Chop:Skf3:EnergyReq': {'u': 'MeV', 'v': '250.0'},
   'BL17:Chop:Skf3:SpeedReq': {'u': 'Hz', 'v': '120.0'},
   'BL17:Det:PCharge:C': {'u': 'C', 'v': '1.0000709428200283'},
   'BL17:Mot:Sample:Axis1': '0.0',
   'BL17:Mot:attenuator1': {'u': 'mm', 'v': '0.1'},
   'BL17:Mot:attenuator2': {'u': 'mm', 'v': '93.4'},
   'BL17:Mot:chtrans': {'u': 'mm', 'v': '-182.0'},
   'BL17:SMS:RunInfo:RunTitle': '5x5 van',
   'field16': 'White beam',
   'field17': 'Ei set to 250meV T0=30',
   'datetime': '2018-09-03T14:36:00.000Z'},
  'endTime': '2018-09-04T16:39:43.000Z',
  'proposalId': '439YZU',
  'sampleId': 'samplemultigrid0032',
  'pid': '20.500.12269/BRIGHTNESS/MG0032'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S17',
  'size': 1153220552,
  'packedSize': 1153220552,
  'creationTime': '2018-06-08T12:10:23.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'ACRO mode, /w mask, thrs: 10',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:16.584Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-08T12:10:23.000Z',
   'archiveRetentionTime': '2028-06-08T12:10:23.000Z',
   'dateOfPublishing': '2021-06-08T12:10:23.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '282',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/282',
   'date': '2018-06-08T14:06:00+02:00',
   'author': 'Nicholai Mauritzson',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S17',
   'subject': 'ACRO mode, /w mask, thrs: 10',
   'comments': 'The slits were opened up to maximum, HeBoSint and Mirrobor collimation was removed and another HeBoSint (with rectangular slits) was added directly onto the front of thedetector enclosure.Beam size: 68x68 mm2 (centered on detector)Counting time: 30 s----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'ACRO',
   'SoNDe threshold': '10',
   'Evts/package': '250',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:37.186Z'},
  'endTime': '2018-06-08T12:10:23.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0015',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0015'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S16',
  'size': 850908304,
  'packedSize': 850908304,
  'creationTime': '2018-06-08T12:05:28.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'TOF mode, /w mask, thrs: 10',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:14.663Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-08T12:05:28.000Z',
   'archiveRetentionTime': '2028-06-08T12:05:28.000Z',
   'dateOfPublishing': '2021-06-08T12:05:28.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '281',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/281',
   'date': '2018-06-08T13:59:00+02:00',
   'author': 'Nicholai Mauritzson',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S16',
   'subject': 'TOF mode, /w mask, thrs: 10',
   'comments': 'The slits were opened up to maximum, HeBoSint and Mirrobor collimation was removed and another HeBoSint (with rectangular slits) was added directly onto the front of thedetector enclosure.Beam size: 68x68 mm2 (centered on detector)Counting time: 30 s----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'TOF',
   'SoNDe threshold': '10',
   'Evts/package': '250',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:36.807Z'},
  'endTime': '2018-06-08T12:05:28.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0009',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0009'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S15',
  'size': 508644965,
  'packedSize': 508644965,
  'creationTime': '2018-06-08T11:59:24.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'TOF mode, /w mask, thrs: 30',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:14.134Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-08T11:59:24.000Z',
   'archiveRetentionTime': '2028-06-08T11:59:24.000Z',
   'dateOfPublishing': '2021-06-08T11:59:24.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '280',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/280',
   'date': '2018-06-08T13:57:00+02:00',
   'author': 'Nicholai Mauritzson',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S15',
   'subject': 'TOF mode, /w mask, thrs: 30',
   'comments': 'The slits were opened up to maximum, HeBoSint and Mirrobor collimation was removed and another HeBoSint (with rectangular slits) was added directly onto the front of thedetector enclosure.Beam size: 68x68 mm2 (centered on detector)Counting time: 30 s----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'TOF',
   'SoNDe threshold': '30',
   'Evts/package': '250',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:36.801Z'},
  'endTime': '2018-06-08T11:59:24.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0006',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0006'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S14',
  'size': 595375573,
  'packedSize': 595375573,
  'creationTime': '2018-06-08T11:56:55.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'TOF mode, /w mask, thrs: 50',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:14.806Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-08T11:56:55.000Z',
   'archiveRetentionTime': '2028-06-08T11:56:55.000Z',
   'dateOfPublishing': '2021-06-08T11:56:55.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '273',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/273',
   'date': '2018-06-08T10:51:00+02:00',
   'author': 'Nicholai Mauritzson',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S14',
   'subject': 'TOF mode, /w mask, thrs: 50',
   'comments': 'The slits were opened up to maximum, HeBoSint and Mirrobor collimation was removed and another HeBoSint (with rectangular slits) was added directly onto the front of thedetector enclosure.Beam size: 68x68 mm2 (centered on detector)Counting time: 34 s----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'TOF',
   'SoNDe threshold': '50',
   'Evts/package': '250',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:36.809Z'},
  'endTime': '2018-06-08T11:56:55.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0010',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0010'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S13',
  'size': 29461128,
  'packedSize': 29461128,
  'creationTime': '2018-06-08T11:34:24.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'ACRO mode, no collimation, plain, thrs: 10',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:15.689Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-08T11:34:24.000Z',
   'archiveRetentionTime': '2028-06-08T11:34:24.000Z',
   'dateOfPublishing': '2021-06-08T11:34:24.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '277',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/277',
   'date': '2018-06-08T13:26:00+02:00',
   'author': 'Emil Rofors',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S13',
   'subject': 'ACRO mode, no collimation, plain, thrs: 10',
   'comments': 'The slits were opened up to maximum, HeBoSint and Mirrobor collimation was removed. Plain scintillator used.Beam size: 68x68 mm2 (centered on detector)Counting time: 60 s----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'ACRO',
   'SoNDe threshold': '10',
   'Evts/package': '250',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:37.044Z'},
  'endTime': '2018-06-08T11:34:24.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0013',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0013'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S12',
  'size': 27904934,
  'packedSize': 27904934,
  'creationTime': '2018-06-08T09:51:01.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'TOF mode, no collimation, plain, thrs: 50',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:14.507Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-08T09:51:01.000Z',
   'archiveRetentionTime': '2028-06-08T09:51:01.000Z',
   'dateOfPublishing': '2021-06-08T09:51:01.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '275',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/275',
   'date': '2018-06-08T11:13:00+02:00',
   'author': 'Nicholai Mauritzson',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S12',
   'subject': 'TOF mode, no collimation, plain, thrs: 50',
   'comments': 'The slits were opened up to maximum, HeBoSint and Mirrobor collimation was removed. Plain scintillator used from now on.Beam size: 68x68 mm2 (centered on detector)Counting time: 60 s----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'TOF',
   'SoNDe threshold': '50',
   'Evts/package': '250',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:36.805Z'},
  'endTime': '2018-06-08T09:51:01.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0008',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0008'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S11',
  'size': 1223309160,
  'packedSize': 1223309160,
  'creationTime': '2018-06-08T09:29:59.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'TOF mode, no collimation, pixelated, thrs: 50',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:14.302Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-08T09:29:59.000Z',
   'archiveRetentionTime': '2028-06-08T09:29:59.000Z',
   'dateOfPublishing': '2021-06-08T09:29:59.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '274',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/274',
   'date': '2018-06-08T11:12:00+02:00',
   'author': 'Emil Rofors',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S11',
   'subject': 'TOF mode, no collimation, pixelated, thrs: 50',
   'comments': 'The slits were opened up to maximum, HeBoSint and Mirrobor collimation was removed. Plain scinitillator switched for pixelated scintillator.Counting time: 60 sBeam size: 68x68 mm2 (centered on detector)----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'TOF',
   'SoNDe threshold': '50',
   'Evts/package': '250',
   'Scintillator': 'GS20 (pixelated, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:36.803Z'},
  'endTime': '2018-06-08T09:29:59.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0007',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0007'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S10',
  'size': 2821447072,
  'packedSize': 2821447072,
  'creationTime': '2018-06-08T09:12:37.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Pixelated scintillator scan, 2.0Å',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:16.900Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-08T09:12:37.000Z',
   'archiveRetentionTime': '2028-06-08T09:12:37.000Z',
   'dateOfPublishing': '2021-06-08T09:12:37.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '272',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/272',
   'date': '2018-06-08T10:44:00+02:00',
   'author': 'Nicholai Mauritzson',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S10',
   'subject': 'Pixelated scintillator scan, 2.0Å',
   'comments': 'Neutron energy: 2.0ÅWe changed the GS20 scintillator to the pixelated version. We scanned between the borders of two adjacent 6x6 mm2 scintillator pieces.Stepsize: 0.5 mmCounting time: 30 s----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'ACRO',
   'SoNDe threshold': '10',
   'Scintillator': 'GS20 (pixelated, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:37.192Z'},
  'endTime': '2018-06-08T09:12:37.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0017',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0017'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S9',
  'size': 592744865,
  'packedSize': 592744865,
  'creationTime': '2018-06-08T06:55:37.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Beam through lead, 2.0Å',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:14.959Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-08T06:55:37.000Z',
   'archiveRetentionTime': '2028-06-08T06:55:37.000Z',
   'dateOfPublishing': '2021-06-08T06:55:37.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '271',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/271',
   'date': '2018-06-08T08:55:00+02:00',
   'author': 'Nicholai Mauritzson',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S9',
   'subject': 'Beam through lead, 2.0Å',
   'comments': 'A lead brick (25 mm thick) as been placed in front of the detector and the beam was scannedvertically from 1mm above center of P19 to 1 mm below center of P27. Distance from lead to scintillator is 15 mm and distance between slit 2 and lead is 72 mm.This data can then directly be compared with the same area which was scanned for runS8 without lead.Stepsize: 0.5 mmCounting time: 40 s----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'ACRO',
   'SoNDe threshold': '10',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:36.813Z'},
  'endTime': '2018-06-08T06:55:37.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0011',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0011'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S8',
  'size': 56824000193,
  'packedSize': 56824000193,
  'creationTime': '2018-06-07T18:21:01.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Automated 14x14 mm2 scan (2.0 Å)',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:13.947Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-07T18:21:01.000Z',
   'archiveRetentionTime': '2028-06-07T18:21:01.000Z',
   'dateOfPublishing': '2021-06-07T18:21:01.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '270',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/270',
   'date': '2018-06-07T17:40:00+02:00',
   'author': 'Nicholai Mauritzson',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S8',
   'subject': 'Automated 14x14 mm2 scan (2.0 Å)',
   'comments': 'Scan with 1mm collimated neutron beam on a 14x14 mm2 pixel.Relative scan area.X: -1 to 13Y: 20 to 34----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'ACRO',
   'SoNDe threshold': '10',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:36.799Z'},
  'endTime': '2018-06-07T18:21:01.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0005',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0005'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/temp/t50',
  'size': 682623294,
  'packedSize': 682623294,
  'creationTime': '2018-06-07T15:38:57.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Sample Data from SoNDe 18',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:17.057Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-07T15:38:57.000Z',
   'archiveRetentionTime': '2028-06-07T15:38:57.000Z',
   'dateOfPublishing': '2021-06-07T15:38:57.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'beamline': 'IFE R2D2',
   'category': 'Measurement',
   'datetime': '2019-04-30T11:49:37.195Z'},
  'endTime': '2018-06-07T15:38:57.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0018',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0018'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S7',
  'size': 41579502,
  'packedSize': 41579502,
  'creationTime': '2018-06-07T13:41:40.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Co-60 gamma test',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:16.717Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-07T13:41:40.000Z',
   'archiveRetentionTime': '2028-06-07T13:41:40.000Z',
   'dateOfPublishing': '2021-06-07T13:41:40.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '259',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/259',
   'date': '2018-06-07T15:25:00+02:00',
   'author': 'Emil Rofors',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S7',
   'subject': 'Co-60 gamma test',
   'comments': 'Similar as previous test (S6) but we changed the source to Co-60 instead.Runtime: 17 minDistance source to scintillator: 4 cm----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'ACRO',
   'SoNDe threshold': '10',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:37.188Z'},
  'endTime': '2018-06-07T13:41:40.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0016',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0016'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S6',
  'size': 77660464,
  'packedSize': 77660464,
  'creationTime': '2018-06-07T13:21:06.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Cs-137 gamma test',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:13.525Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-07T13:21:06.000Z',
   'archiveRetentionTime': '2028-06-07T13:21:06.000Z',
   'dateOfPublishing': '2021-06-07T13:21:06.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '258',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/258',
   'date': '2018-06-07T15:22:00+02:00',
   'author': 'Emil Rofors',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S6',
   'subject': 'Cs-137 gamma test',
   'comments': 'To test the gamma sensitivity of the detector, the beam was turned off and an Cs-137 source was placed in the same position as the beam on the last collimator (see image).Attached is an image of the setup and 2D plot of the accumulated triggers for all 64 pixels. In the plot we can see that the highest gain pixels are have a higher rate, asexpected.Runtime: 17 minDistance source to scintillator: 9.5 cm----- Settings and configuration ---------------------------------------------------Attachment 2 shows a heatmap of the integrated 17 minutes triggers, as shown in daquri.',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'ACRO',
   'SoNDe threshold': '10',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:36.694Z'},
  'endTime': '2018-06-07T13:21:06.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0004',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0004'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S5',
  'size': 400101918,
  'packedSize': 400101918,
  'creationTime': '2018-06-07T12:52:46.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Central measurement of P19 @ 2.0Å',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:13.378Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-07T12:52:46.000Z',
   'archiveRetentionTime': '2028-06-07T12:52:46.000Z',
   'dateOfPublishing': '2021-06-07T12:52:46.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '256',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/256',
   'date': '2018-06-07T14:49:00+02:00',
   'author': 'Nicholai Mauritzson',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S5',
   'subject': 'Central measurement of P19 @ 2.0Å',
   'comments': 'A central measurement of P19 with 2.0Å neutrons.Counting time = 30 s----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'ACRO',
   'SoNDe threshold': '10',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:36.692Z'},
  'endTime': '2018-06-07T12:52:46.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0003',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0003'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S4',
  'size': 42402106721,
  'packedSize': 42402106721,
  'creationTime': '2018-06-07T12:10:25.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Automated 8x8 mm2 scan (2.4 Å)',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:16.174Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-07T12:10:25.000Z',
   'archiveRetentionTime': '2028-06-07T12:10:25.000Z',
   'dateOfPublishing': '2021-06-07T12:10:25.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '251',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/251',
   'date': '2018-06-07T11:14:00+02:00',
   'author': 'Nicholai Mauritzson',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S4',
   'subject': 'Automated 8x8 mm2 scan (2.4 Å)',
   'comments': 'A 0.5 mm millimeter scan across a 8x8 mm2 surface, centered on the corner of P18, P19, P26 and P27.Neutron energy @ 2.4 Å.The following parameters are used:X_pos = 52.65 mm to 60.65 mmY_pos = 45.65 mm to 53.65 mmStepsize = 0.5 mmCounting time = 15 sTotal number of points to scan: 256Total time: ca 1 h----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'ACRO',
   'SoNDe threshold': '10',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:37.180Z'},
  'endTime': '2018-06-07T12:10:25.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0014',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0014'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S3',
  'size': 15600800763,
  'packedSize': 15600800763,
  'creationTime': '2018-06-07T00:50:07.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Automatic scan: all pixels, 1 mm step',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:15.373Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-07T00:50:07.000Z',
   'archiveRetentionTime': '2028-06-07T00:50:07.000Z',
   'dateOfPublishing': '2021-06-07T00:50:07.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '248',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/248',
   'date': '2018-06-06T17:39:00+02:00',
   'author': 'Nicholai Mauritzson',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S3',
   'subject': 'Automatic scan: all pixels, 1 mm step',
   'comments': 'A millimeter scan across the entire surface of the detector.The scan includes a 2 mm border outside of the detector. Scan area 52x52 mm2.The following parameters are used:X_pos = 17.65 mm to 70.65 mmY_pos = 27.65 mm to 81.65 mmStepsize = 1 mmCounting time = 15 sTotal number of points to scan: 2704Total time: ca 15 h----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'ACRO',
   'SoNDe threshold': '10',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:37.042Z'},
  'endTime': '2018-06-07T00:50:07.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0012',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0012'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S2',
  'size': 10976303932,
  'packedSize': 10976303932,
  'creationTime': '2018-06-06T14:57:27.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Automatic scan: center of all pixels',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:13.224Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-06T14:57:27.000Z',
   'archiveRetentionTime': '2028-06-06T14:57:27.000Z',
   'dateOfPublishing': '2021-06-06T14:57:27.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '245',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/245',
   'date': '2018-06-06T16:11:00+02:00',
   'author': 'Nicholai Mauritzson',
   'beamline': 'IFE R2D2',
   'type': 'Start/Stop',
   'category': 'Measurement',
   'run': 'S2',
   'subject': 'Automatic scan: center of all pixels',
   'comments': 'An automated central scan of all pixels.The following parameters are used:X_pos = 23.65 mm to 65.65 mmY_pos = 34.65 mm to 76.65 mmStepsize = 6 mmCounting time = 20 sTotal number of points to scan: 64Total time: ca 22 min----- Settings and configuration ---------------------------------------------------',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'ACRO',
   'SoNDe threshold': '10',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:36.687Z'},
  'endTime': '2018-06-06T14:57:27.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0002',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0002'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_june_2018/data/S1',
  'size': 872025994,
  'packedSize': 872025994,
  'creationTime': '2018-06-06T12:43:13.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'First automated scan',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:13.016Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2028-06-06T12:43:13.000Z',
   'archiveRetentionTime': '2028-06-06T12:43:13.000Z',
   'dateOfPublishing': '2021-06-06T12:43:13.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'elog_id': '242',
   'elog_url': 'https://stf02.nuclear.lu.se/SoNDe+Testbeams/242',
   'date': '2018-06-06T15:05:00+02:00',
   'author': 'Emil Rofors',
   'beamline': 'IFE R2D2',
   'type': 'Status',
   'category': 'Measurement',
   'run': 'S1',
   'subject': 'First automated scan',
   'comments': 'A test-scan at the centers of 3*3 pixels. Attached figure shows the beam at P29.Total number of points to scan: 9Total time: ca 2 min----- Settings and configuration ---------------------------------------------------',
   'Time per pos': '10 s',
   'Step size': '6 mm',
   'MAPMT': 'ZA0250 @ 900 V',
   'SoNDe module': '7053-1-008',
   'SoNDe acqu_ mode': 'ACRO',
   'SoNDe threshold': '10',
   'Scintillator': 'GS20 (plain, polished)',
   'Optical coupling': 'Dryfit',
   'datetime': '2019-04-30T11:49:36.678Z'},
  'endTime': '2018-06-06T12:43:13.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0001',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0001'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_oct_2017/from_lenovo_laptop/IDEASTestbench_BETA_V0_24-x86-ALL/logs',
  'size': 30879535174,
  'packedSize': 30879535174,
  'creationTime': '2017-10-20T15:54:50.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Sample Data from SoNDe 30',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:23.308Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-10-20T15:54:50.000Z',
   'archiveRetentionTime': '2027-10-20T15:54:50.000Z',
   'dateOfPublishing': '2020-10-20T15:54:50.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'beamline': 'IFE R2D2',
   'category': 'Measurement',
   'datetime': '2019-04-30T11:49:37.233Z'},
  'endTime': '2017-10-20T15:54:50.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0030',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0030'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_oct_2017/from_EFU_PC/EFU_data',
  'size': 2692386152,
  'packedSize': 2692386152,
  'creationTime': '2017-10-19T11:41:54.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Sample Data from SoNDe 19',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:17.231Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-10-19T11:41:54.000Z',
   'archiveRetentionTime': '2027-10-19T11:41:54.000Z',
   'dateOfPublishing': '2020-10-19T11:41:54.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'beamline': 'IFE R2D2',
   'category': 'Measurement',
   'datetime': '2019-04-30T11:49:37.200Z'},
  'endTime': '2017-10-19T11:41:54.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0019',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0019'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_oct_2017/from_lenovo_laptop/IDEASTestbench_BETA_V0_24-x86-ALL/conf/ROSMAP-MP',
  'size': 26778,
  'packedSize': 26778,
  'creationTime': '2017-10-17T11:46:54.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Sample Data from SoNDe 28',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:22.932Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-10-17T11:46:54.000Z',
   'archiveRetentionTime': '2027-10-17T11:46:54.000Z',
   'dateOfPublishing': '2020-10-17T11:46:54.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'beamline': 'IFE R2D2',
   'category': 'Measurement',
   'datetime': '2019-04-30T11:49:37.218Z'},
  'endTime': '2017-10-17T11:46:54.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0028',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0028'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_oct_2017/from_lenovo_laptop/gamma/test_saved_data',
  'size': 217876736,
  'packedSize': 217876736,
  'creationTime': '2017-10-16T15:50:40.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Sample Data from SoNDe 20',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:17.529Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-10-16T15:50:40.000Z',
   'archiveRetentionTime': '2027-10-16T15:50:40.000Z',
   'dateOfPublishing': '2020-10-16T15:50:40.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'beamline': 'IFE R2D2',
   'category': 'Measurement',
   'datetime': '2019-04-30T11:49:37.203Z'},
  'endTime': '2017-10-16T15:50:40.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0020',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0020'},
 {'owner': 'Francesco Piscitelli',
  'ownerEmail': 'Francesco.Piscitelli@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0002-0325-4407',
  'contactEmail': 'Francesco.Piscitelli@esss.se',
  'sourceFolder': '/users/detector/experiments/multiblade/data/brightness//2017_10_ISIS_MB16S_ReflectometryAtCRISP/03_6_D_Ir_align',
  'size': 39040051,
  'packedSize': 39040051,
  'creationTime': '2017-10-03T14:18:26.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['multiblade', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union        Framework Programme for Research and Innovation Horizon 2020, under grant        agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/Zaba',
  'datasetName': 'Sample Data from multiblade 15',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:26.167Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-10-03T14:18:26.000Z',
   'archiveRetentionTime': '2027-10-03T14:18:26.000Z',
   'dateOfPublishing': '2020-10-03T14:18:26.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Francesco Piscitelli',
  'creationLocation': 'multiblade',
  'scientificMetadata': {'tag': '03_6_D_Ir_align',
   'comment': 'sample iridium',
   'comment1': 'centering 122 config iridium Hz fixed = -1.7',
   'datetime': ''},
  'endTime': '2017-10-03T14:18:26.000Z',
  'proposalId': '23PTEG',
  'sampleId': 'samplemultiblade0015',
  'pid': '20.500.12269/BRIGHTNESS/MB0015'},
 {'owner': 'Francesco Piscitelli',
  'ownerEmail': 'Francesco.Piscitelli@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0002-0325-4407',
  'contactEmail': 'Francesco.Piscitelli@esss.se',
  'sourceFolder': '/users/detector/experiments/multiblade/data/brightness//2017_10_ISIS_MB16S_ReflectometryAtCRISP/03_5_C_DirectBeam_5mmAl',
  'size': 568958734,
  'packedSize': 568958734,
  'creationTime': '2017-10-03T13:12:27.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['multiblade', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union        Framework Programme for Research and Innovation Horizon 2020, under grant        agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/Zaba',
  'datasetName': 'Sample Data from multiblade 14',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:25.982Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-10-03T13:12:27.000Z',
   'archiveRetentionTime': '2027-10-03T13:12:27.000Z',
   'dateOfPublishing': '2020-10-03T13:12:27.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Francesco Piscitelli',
  'creationLocation': 'multiblade',
  'scientificMetadata': {'tag': '03_5_C_DirectBeam_5mmAl',
   'comment': 'direct Beam, 5 minutes Al plate in front of the window',
   'time': '2 minutes',
   'start': '167/2.82',
   'stop': '166.6/25.92',
   'start1': '166.05/1.63',
   'stop1': '166/25.18',
   'datetime': ''},
  'endTime': '2017-10-03T13:12:27.000Z',
  'proposalId': '23PTEG',
  'sampleId': 'samplemultiblade0014',
  'pid': '20.500.12269/BRIGHTNESS/MB0014'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/unclustered/IFE_2016_Nov/Calibration',
  'size': 1644451973,
  'packedSize': 1644451973,
  'creationTime': '2017-09-14T10:07:43.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 40',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:02.601Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-09-14T10:07:43.000Z',
   'archiveRetentionTime': '2027-09-14T10:07:43.000Z',
   'dateOfPublishing': '2020-09-14T10:07:43.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2017-09-14T10:07:43.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0040',
  'pid': '20.500.12269/BRIGHTNESS/NMX0040'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_oct_2017/from_lenovo_laptop/IDEASTestbench_BETA_V0_24-x86-ALL/conf/XCS-1000',
  'size': 72849,
  'packedSize': 72849,
  'creationTime': '2017-07-01T11:33:58.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Sample Data from SoNDe 29',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:23.069Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-07-01T11:33:58.000Z',
   'archiveRetentionTime': '2027-07-01T11:33:58.000Z',
   'dateOfPublishing': '2020-07-01T11:33:58.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'beamline': 'IFE R2D2',
   'category': 'Measurement',
   'datetime': '2019-04-30T11:49:37.220Z'},
  'endTime': '2017-07-01T11:33:58.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0029',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0029'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_oct_2017/from_lenovo_laptop/IDEASTestbench_BETA_V0_24-x86-ALL/conf/INX-500',
  'size': 12594,
  'packedSize': 12594,
  'creationTime': '2017-07-01T11:33:52.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Sample Data from SoNDe 27',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:22.757Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-07-01T11:33:52.000Z',
   'archiveRetentionTime': '2027-07-01T11:33:52.000Z',
   'dateOfPublishing': '2020-07-01T11:33:52.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'beamline': 'IFE R2D2',
   'category': 'Measurement',
   'datetime': '2019-04-30T11:49:37.216Z'},
  'endTime': '2017-07-01T11:33:52.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0027',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0027'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_oct_2017/from_lenovo_laptop/IDEASTestbench_BETA_V0_24-x86-ALL/conf/GammaProcessor',
  'size': 31289,
  'packedSize': 31289,
  'creationTime': '2017-07-01T11:33:50.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Sample Data from SoNDe 26',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:22.611Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-07-01T11:33:50.000Z',
   'archiveRetentionTime': '2027-07-01T11:33:50.000Z',
   'dateOfPublishing': '2020-07-01T11:33:50.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'beamline': 'IFE R2D2',
   'category': 'Measurement',
   'datetime': '2019-04-30T11:49:37.214Z'},
  'endTime': '2017-07-01T11:33:50.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0026',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0026'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_oct_2017/from_lenovo_laptop/IDEASTestbench_BETA_V0_24-x86-ALL/conf/Galao-VATA64HDR16',
  'size': 33704,
  'packedSize': 33704,
  'creationTime': '2017-07-01T11:33:48.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Sample Data from SoNDe 25',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:22.481Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-07-01T11:33:48.000Z',
   'archiveRetentionTime': '2027-07-01T11:33:48.000Z',
   'dateOfPublishing': '2020-07-01T11:33:48.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'beamline': 'IFE R2D2',
   'category': 'Measurement',
   'datetime': '2019-04-30T11:49:37.212Z'},
  'endTime': '2017-07-01T11:33:48.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0025',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0025'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_oct_2017/from_lenovo_laptop/IDEASTestbench_BETA_V0_24-x86-ALL/conf/Galao-IDE3380_SIPHRA',
  'size': 22457,
  'packedSize': 22457,
  'creationTime': '2017-07-01T11:33:46.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Sample Data from SoNDe 23',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:22.241Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-07-01T11:33:46.000Z',
   'archiveRetentionTime': '2027-07-01T11:33:46.000Z',
   'dateOfPublishing': '2020-07-01T11:33:46.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'beamline': 'IFE R2D2',
   'category': 'Measurement',
   'datetime': '2019-04-30T11:49:37.209Z'},
  'endTime': '2017-07-01T11:33:46.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0023',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0023'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_oct_2017/from_lenovo_laptop/IDEASTestbench_BETA_V0_24-x86-ALL/conf/Galao-IDE3380_SIPHRA/reg_conf',
  'size': 1524,
  'packedSize': 1524,
  'creationTime': '2017-07-01T11:33:46.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Sample Data from SoNDe 24',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:22.357Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-07-01T11:33:46.000Z',
   'archiveRetentionTime': '2027-07-01T11:33:46.000Z',
   'dateOfPublishing': '2020-07-01T11:33:46.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'beamline': 'IFE R2D2',
   'category': 'Measurement',
   'datetime': '2019-04-30T11:49:37.210Z'},
  'endTime': '2017-07-01T11:33:46.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0024',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0024'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_oct_2017/from_lenovo_laptop/IDEASTestbench_BETA_V0_24-x86-ALL/conf/Default',
  'size': 3605,
  'packedSize': 3605,
  'creationTime': '2017-07-01T11:33:42.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Sample Data from SoNDe 22',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:20.459Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-07-01T11:33:42.000Z',
   'archiveRetentionTime': '2027-07-01T11:33:42.000Z',
   'dateOfPublishing': '2020-07-01T11:33:42.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'beamline': 'IFE R2D2',
   'category': 'Measurement',
   'datetime': '2019-04-30T11:49:37.207Z'},
  'endTime': '2017-07-01T11:33:42.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0022',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0022'},
 {'owner': 'Ramsey Al Jebali',
  'ownerEmail': 'ramsey.aljebali@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0000-0000-0000',
  'contactEmail': 'ramsey.aljebali@esss.se',
  'sourceFolder': '/users/detector/experiments/sonde/IFE_oct_2017/from_lenovo_laptop/IDEASTestbench_BETA_V0_24-x86-ALL/conf/CZTCam',
  'size': 38097,
  'packedSize': 38097,
  'creationTime': '2017-07-01T11:33:38.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['SoNDe', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/SONDE',
  'datasetName': 'Sample Data from SoNDe 21',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:17.772Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-07-01T11:33:38.000Z',
   'archiveRetentionTime': '2027-07-01T11:33:38.000Z',
   'dateOfPublishing': '2020-07-01T11:33:38.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Ramsey Al Jebali',
  'creationLocation': 'SoNDe',
  'scientificMetadata': {'beamline': 'IFE R2D2',
   'category': 'Measurement',
   'datetime': '2019-04-30T11:49:37.205Z'},
  'endTime': '2017-07-01T11:33:38.000Z',
  'proposalId': 'LM28IF',
  'sampleId': 'samplesonde0021',
  'pid': '20.500.12269/BRIGHTNESS/SONDE0021'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/analyzed/dead200dead600/IFE_2015_Feb',
  'size': 12496253739,
  'packedSize': 12496253739,
  'creationTime': '2017-06-09T12:07:26.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 1',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:49:56.440Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-06-09T12:07:26.000Z',
   'archiveRetentionTime': '2027-06-09T12:07:26.000Z',
   'dateOfPublishing': '2020-06-09T12:07:26.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'key': '0001',
   'detector': 'Sisi',
   'purpose': 'calibration',
   'F+GEM V': 3330,
   'Dfield': '✓',
   'F+D V': 3948,
   'Config': 'back',
   'Wavelength[A]': 2,
   'Beam': 'unfocused',
   'AlB03': '10 x 20',
   'B4C': '20 x 30',
   'AlB032': '10 x 10',
   'B4C_2': '10 x 30',
   'B4C_3': '30 x 10',
   'B4C sum': '10 x 10',
   'mask': 'none',
   'MCA_s': 60,
   'He3': '',
   'He3 s': '',
   'tick': '✓',
   'runNumber': 132,
   '1e3 Hits': 500,
   'Chip': 'APV25',
   'Zs': 'APZ',
   'threshold': 280,
   'filename': 'run_132_Sisi_G_3330V_D_3948V_back_2p00A_unf_APZ_280_cal',
   'datetime': '2019-04-30T11:49:36.545Z'},
  'endTime': '2017-06-09T12:07:26.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0001',
  'pid': '20.500.12269/BRIGHTNESS/NMX0001'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/apv2vmm/IFE_2016_Nov/Calibration',
  'size': 6845338465,
  'packedSize': 6845338465,
  'creationTime': '2017-06-08T12:08:16.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 20',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:49:59.526Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-06-08T12:08:16.000Z',
   'archiveRetentionTime': '2027-06-08T12:08:16.000Z',
   'dateOfPublishing': '2020-06-08T12:08:16.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'key': '0020',
   'detector': 'Sisi',
   'purpose': 'efficiency',
   'F+GEM V': 3330,
   'Dfield': '✓',
   'F+D V': 3948,
   'Config': 'front',
   'Wavelength[A]': 1.54,
   'Beam': 'unfocused',
   'AlB03': '10 x 20',
   'B4C': '20 x 30',
   'AlB032': '10 x 20',
   'B4C_2': '2 x 30',
   'B4C_3': '26 x 10',
   'B4C sum': '2 x 10',
   'mask': 'none',
   'MCA_s': 60,
   'He3': '✓',
   'He3 s': 10,
   'tick': '✓',
   'runNumber': 157,
   '1e3 Hits': 1000,
   'Chip': 'APV25',
   'Zs': 'APZ',
   'threshold': 280,
   'filename': 'run_157_Sisi_G_3330V_D_3948V_front_1p54A_unf_APZ_280_eff',
   'datetime': '2019-04-30T11:49:36.593Z'},
  'endTime': '2017-06-08T12:08:16.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0020',
  'pid': '20.500.12269/BRIGHTNESS/NMX0020'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/analyzed/thresh100_150',
  'size': 827776084,
  'packedSize': 827776084,
  'creationTime': '2017-01-18T23:43:37.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 3',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:49:56.819Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-01-18T23:43:37.000Z',
   'archiveRetentionTime': '2027-01-18T23:43:37.000Z',
   'dateOfPublishing': '2020-01-18T23:43:37.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'key': '0003',
   'detector': 'Sisi',
   'purpose': 'calibration',
   'F+GEM V': 3330,
   'Dfield': '✓',
   'F+D V': 3348,
   'Config': 'back',
   'Wavelength[A]': 2,
   'Beam': 'unfocused',
   'AlB03': '10 x 20',
   'B4C': '20 x 30',
   'AlB032': '10 x 10',
   'B4C_2': '10 x 30',
   'B4C_3': '30 x 10',
   'B4C sum': '10 x 10',
   'mask': 'none',
   'MCA_s': 60,
   'He3': '',
   'He3 s': '',
   'tick': '✓',
   'runNumber': 135,
   '1e3 Hits': 500,
   'Chip': 'APV25',
   'Zs': 'APZ',
   'threshold': 280,
   'filename': 'run_135_Sisi_G_3330V_D_3348V_back_2p00A_unf_APZ_280_cal',
   'datetime': '2019-04-30T11:49:36.560Z'},
  'endTime': '2017-01-18T23:43:37.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0003',
  'pid': '20.500.12269/BRIGHTNESS/NMX0003'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/analyzed/thresh100_150/IFE_2016_Nov/Pattern',
  'size': 387691592964,
  'packedSize': 387691592964,
  'creationTime': '2017-01-06T21:19:29.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 12',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:49:58.356Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2027-01-06T21:19:29.000Z',
   'archiveRetentionTime': '2027-01-06T21:19:29.000Z',
   'dateOfPublishing': '2020-01-06T21:19:29.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'key': '0012',
   'detector': 'Sisi',
   'purpose': 'calibration',
   'F+GEM V': 3240,
   'Dfield': '✓',
   'F+D V': 3282,
   'Config': 'back',
   'Wavelength[A]': 2,
   'Beam': 'unfocused',
   'AlB03': '10 x 20',
   'B4C': '20 x 30',
   'AlB032': '10 x 10',
   'B4C_2': '10 x 30',
   'B4C_3': '30 x 10',
   'B4C sum': '10 x 10',
   'mask': 'none',
   'MCA_s': 60,
   'He3': '',
   'He3 s': '',
   'tick': '✓',
   'runNumber': 145,
   '1e3 Hits': 500,
   'Chip': 'APV25',
   'Zs': 'APZ',
   'threshold': 280,
   'filename': 'run_145_Sisi_G_3240V_D_3282V_back_2p00A_unf_APZ_280_cal',
   'datetime': '2019-04-30T11:49:36.576Z'},
  'endTime': '2017-01-06T21:19:29.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0012',
  'pid': '20.500.12269/BRIGHTNESS/NMX0012'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/analyzed/thresh100_150/IFE_2016_Nov/Efficiency',
  'size': 53022745663,
  'packedSize': 53022745663,
  'creationTime': '2016-12-16T22:31:24.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 11',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:49:58.194Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-16T22:31:24.000Z',
   'archiveRetentionTime': '2026-12-16T22:31:24.000Z',
   'dateOfPublishing': '2019-12-16T22:31:24.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'key': '0011',
   'detector': 'Sisi',
   'purpose': 'calibration',
   'F+GEM V': 3240,
   'Dfield': '✓',
   'F+D V': 3582,
   'Config': 'back',
   'Wavelength[A]': 2,
   'Beam': 'unfocused',
   'AlB03': '10 x 20',
   'B4C': '20 x 30',
   'AlB032': '10 x 10',
   'B4C_2': '10 x 30',
   'B4C_3': '30 x 10',
   'B4C sum': '10 x 10',
   'mask': 'none',
   'MCA_s': 60,
   'He3': '',
   'He3 s': '',
   'tick': '✓',
   'runNumber': 144,
   '1e3 Hits': 500,
   'Chip': 'APV25',
   'Zs': 'APZ',
   'threshold': 280,
   'filename': 'run_144_Sisi_G_3240V_D_3582V_back_2p00A_unf_APZ_280_cal',
   'datetime': '2019-04-30T11:49:36.574Z'},
  'endTime': '2016-12-16T22:31:24.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0011',
  'pid': '20.500.12269/BRIGHTNESS/NMX0011'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/analyzed/thresh100_150/IFE_2016_Nov/APZ_threshold_scan',
  'size': 18588899007,
  'packedSize': 18588899007,
  'creationTime': '2016-12-16T15:04:10.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 7',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:49:57.774Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-16T15:04:10.000Z',
   'archiveRetentionTime': '2026-12-16T15:04:10.000Z',
   'dateOfPublishing': '2019-12-16T15:04:10.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'key': '0007',
   'detector': 'Sisi',
   'purpose': 'calibration',
   'F+GEM V': 3270,
   'Dfield': '✓',
   'F+D V': 3904,
   'Config': 'back',
   'Wavelength[A]': 2,
   'Beam': 'unfocused',
   'AlB03': '10 x 20',
   'B4C': '20 x 30',
   'AlB032': '10 x 10',
   'B4C_2': '10 x 30',
   'B4C_3': '30 x 10',
   'B4C sum': '10 x 10',
   'mask': 'none',
   'MCA_s': 60,
   'He3': '',
   'He3 s': '',
   'tick': '✓',
   'runNumber': 140,
   '1e3 Hits': 500,
   'Chip': 'APV25',
   'Zs': 'APZ',
   'threshold': 280,
   'filename': 'run_140_Sisi_G_3270V_D_3904V_back_2p00A_unf_APZ_280_cal',
   'datetime': '2019-04-30T11:49:36.570Z'},
  'endTime': '2016-12-16T15:04:10.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0007',
  'pid': '20.500.12269/BRIGHTNESS/NMX0007'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/analyzed/thresh100_150/IFE_2016_Nov/Calibration',
  'size': 41133979115,
  'packedSize': 41133979115,
  'creationTime': '2016-12-16T06:28:25.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 10',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:49:57.954Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-16T06:28:25.000Z',
   'archiveRetentionTime': '2026-12-16T06:28:25.000Z',
   'dateOfPublishing': '2019-12-16T06:28:25.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'key': '0010',
   'detector': 'Sisi',
   'purpose': 'calibration',
   'F+GEM V': 3240,
   'Dfield': '✓',
   'F+D V': 3882,
   'Config': 'back',
   'Wavelength[A]': 2,
   'Beam': 'unfocused',
   'AlB03': '10 x 20',
   'B4C': '20 x 30',
   'AlB032': '10 x 10',
   'B4C_2': '10 x 30',
   'B4C_3': '30 x 10',
   'B4C sum': '10 x 10',
   'mask': 'none',
   'MCA_s': 60,
   'He3': '',
   'He3 s': '',
   'tick': '✓',
   'runNumber': 143,
   '1e3 Hits': 500,
   'Chip': 'APV25',
   'Zs': 'APZ',
   'threshold': 280,
   'filename': 'run_143_Sisi_G_3240V_D_3882V_back_2p00A_unf_APZ_280_cal',
   'datetime': '2019-04-30T11:49:36.572Z'},
  'endTime': '2016-12-16T06:28:25.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0010',
  'pid': '20.500.12269/BRIGHTNESS/NMX0010'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/analyzed/thresh100_150/IFE_2015_Feb',
  'size': 30773224435,
  'packedSize': 30773224435,
  'creationTime': '2016-12-15T13:05:36.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 4',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:49:57.025Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-15T13:05:36.000Z',
   'archiveRetentionTime': '2026-12-15T13:05:36.000Z',
   'dateOfPublishing': '2019-12-15T13:05:36.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'key': '0004',
   'detector': 'Sisi',
   'purpose': 'calibration',
   'F+GEM V': 3300,
   'Dfield': '✓',
   'F+D V': 3926,
   'Config': 'back',
   'Wavelength[A]': 2,
   'Beam': 'unfocused',
   'AlB03': '10 x 20',
   'B4C': '20 x 30',
   'AlB032': '10 x 10',
   'B4C_2': '10 x 30',
   'B4C_3': '30 x 10',
   'B4C sum': '10 x 10',
   'mask': 'none',
   'MCA_s': 60,
   'He3': '',
   'He3 s': '',
   'tick': '✓',
   'runNumber': 147,
   '1e3 Hits': 500,
   'Chip': 'APV25',
   'Zs': 'APZ',
   'threshold': 280,
   'filename': 'run_147_Sisi_G_3300V_D_3926V_back_2p00A_unf_APZ_280_cal',
   'datetime': '2019-04-30T11:49:36.562Z'},
  'endTime': '2016-12-15T13:05:36.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0004',
  'pid': '20.500.12269/BRIGHTNESS/NMX0004'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/analyzed/thresh100_150/IFE_2016_Nov',
  'size': 16581102135,
  'packedSize': 16581102135,
  'creationTime': '2016-12-14T18:27:52.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 6',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:49:57.462Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-14T18:27:52.000Z',
   'archiveRetentionTime': '2026-12-14T18:27:52.000Z',
   'dateOfPublishing': '2019-12-14T18:27:52.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'key': '0006',
   'detector': 'Sisi',
   'purpose': 'calibration',
   'F+GEM V': 3300,
   'Dfield': '✓',
   'F+D V': 3326,
   'Config': 'back',
   'Wavelength[A]': 2,
   'Beam': 'unfocused',
   'AlB03': '10 x 20',
   'B4C': '20 x 30',
   'AlB032': '10 x 10',
   'B4C_2': '10 x 30',
   'B4C_3': '30 x 10',
   'B4C sum': '10 x 10',
   'mask': 'none',
   'MCA_s': 60,
   'He3': '',
   'He3 s': '',
   'tick': '✓',
   'runNumber': 149,
   '1e3 Hits': 500,
   'Chip': 'APV25',
   'Zs': 'APZ',
   'threshold': 280,
   'filename': 'run_149_Sisi_G_3300V_D_3326V_back_2p00A_unf_APZ_280_cal',
   'datetime': '2019-04-30T11:49:36.567Z'},
  'endTime': '2016-12-14T18:27:52.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0006',
  'pid': '20.500.12269/BRIGHTNESS/NMX0006'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/analyzed/thresh100_150/IFE_2016_Nov/Scattering',
  'size': 16358059945,
  'packedSize': 16358059945,
  'creationTime': '2016-12-12T15:16:21.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 13',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:49:58.526Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-12T15:16:21.000Z',
   'archiveRetentionTime': '2026-12-12T15:16:21.000Z',
   'dateOfPublishing': '2019-12-12T15:16:21.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'key': '0013',
   'detector': 'Sisi',
   'purpose': 'efficiency',
   'F+GEM V': 3330,
   'Dfield': '✓',
   'F+D V': 3948,
   'Config': 'back',
   'Wavelength[A]': 2,
   'Beam': 'unfocused',
   'AlB03': '10 x 20',
   'B4C': '20 x 30',
   'AlB032': '10 x 20',
   'B4C_2': '2 x 30',
   'B4C_3': '26 x 10',
   'B4C sum': '2 x 10',
   'mask': 'none',
   'MCA_s': 60,
   'He3': '✓',
   'He3 s': 10,
   'tick': '✓',
   'runNumber': 150,
   '1e3 Hits': 1000,
   'Chip': 'APV25',
   'Zs': 'APZ',
   'threshold': 280,
   'filename': 'run_150_Sisi_G_3330V_D_3948V_back_2p00A_unf_APZ_280_eff',
   'datetime': '2019-04-30T11:49:36.577Z'},
  'endTime': '2016-12-12T15:16:21.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0013',
  'pid': '20.500.12269/BRIGHTNESS/NMX0013'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/analyzed/thresh100_150/IFE_2016_Jun',
  'size': 79643893496,
  'packedSize': 79643893496,
  'creationTime': '2016-12-11T04:45:52.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 5',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:49:57.227Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-11T04:45:52.000Z',
   'archiveRetentionTime': '2026-12-11T04:45:52.000Z',
   'dateOfPublishing': '2019-12-11T04:45:52.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'key': '0005',
   'detector': 'Sisi',
   'purpose': 'calibration',
   'F+GEM V': 3300,
   'Dfield': '✓',
   'F+D V': 3626,
   'Config': 'back',
   'Wavelength[A]': 2,
   'Beam': 'unfocused',
   'AlB03': '10 x 20',
   'B4C': '20 x 30',
   'AlB032': '10 x 10',
   'B4C_2': '10 x 30',
   'B4C_3': '30 x 10',
   'B4C sum': '10 x 10',
   'mask': 'none',
   'MCA_s': 60,
   'He3': '',
   'He3 s': '',
   'tick': '✓',
   'runNumber': 148,
   '1e3 Hits': 500,
   'Chip': 'APV25',
   'Zs': 'APZ',
   'threshold': 280,
   'filename': 'run_148_Sisi_G_3300V_D_3626V_back_2p00A_unf_APZ_280_cal',
   'datetime': '2019-04-30T11:49:36.565Z'},
  'endTime': '2016-12-11T04:45:52.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0005',
  'pid': '20.500.12269/BRIGHTNESS/NMX0005'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/analyzed/parameters',
  'size': 19607262,
  'packedSize': 19607262,
  'creationTime': '2016-12-10T13:25:25.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 2',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:49:56.641Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-10T13:25:25.000Z',
   'archiveRetentionTime': '2026-12-10T13:25:25.000Z',
   'dateOfPublishing': '2019-12-10T13:25:25.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'key': '0002',
   'detector': 'Sisi',
   'purpose': 'calibration',
   'F+GEM V': 3330,
   'Dfield': '✓',
   'F+D V': 3648,
   'Config': 'back',
   'Wavelength[A]': 2,
   'Beam': 'unfocused',
   'AlB03': '10 x 20',
   'B4C': '20 x 30',
   'AlB032': '10 x 10',
   'B4C_2': '10 x 30',
   'B4C_3': '30 x 10',
   'B4C sum': '10 x 10',
   'mask': 'none',
   'MCA_s': 60,
   'He3': '',
   'He3 s': '',
   'tick': '✓',
   'runNumber': 134,
   '1e3 Hits': 500,
   'Chip': 'APV25',
   'Zs': 'APZ',
   'threshold': 280,
   'filename': 'run_134_Sisi_G_3330V_D_3648V_back_2p00A_unf_APZ_280_cal',
   'datetime': '2019-04-30T11:49:36.557Z'},
  'endTime': '2016-12-10T13:25:25.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0002',
  'pid': '20.500.12269/BRIGHTNESS/NMX0002'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration',
  'size': 14367375547,
  'packedSize': 14367375547,
  'creationTime': '2016-12-09T17:34:16.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 30',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:01.066Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T17:34:16.000Z',
   'archiveRetentionTime': '2026-12-09T17:34:16.000Z',
   'dateOfPublishing': '2019-12-09T17:34:16.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'key': '0030',
   'detector': 'Franz',
   'purpose': 'pattern',
   'F+GEM V': 3330,
   'Dfield': '',
   'F+D V': 3948,
   'Config': 'back',
   'Wavelength[A]': 2,
   'Beam': 'unfocused',
   'AlB03': '30 x 30',
   'B4C': 'none',
   'AlB032': '30 x 30',
   'B4C_2': 'none',
   'B4C_3': 'none',
   'B4C sum': 'none',
   'mask': 'none',
   'MCA_s': '',
   'He3': '',
   'He3 s': '',
   'tick': '✓',
   'runNumber': 168,
   '1e3 Hits': 1000,
   'Chip': 'APV25',
   'Zs': 'APZ',
   'threshold': 280,
   'filename': 'run_168_Franz_G_3330V_D_3948V_back_2p00A_unf_APZ_280_pat',
   'datetime': '2019-04-30T11:49:36.612Z'},
  'endTime': '2016-12-09T17:34:16.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0030',
  'pid': '20.500.12269/BRIGHTNESS/NMX0030'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_149_Sisi_G_3300V_D_3326V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 945132317,
  'packedSize': 945132317,
  'creationTime': '2016-12-09T17:34:16.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 113',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:10.165Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T17:34:16.000Z',
   'archiveRetentionTime': '2026-12-09T17:34:16.000Z',
   'dateOfPublishing': '2019-12-09T17:34:16.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T17:34:16.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0113',
  'pid': '20.500.12269/BRIGHTNESS/NMX0113'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_148_Sisi_G_3300V_D_3626V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 972692975,
  'packedSize': 972692975,
  'creationTime': '2016-12-09T17:26:55.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 112',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:10.031Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T17:26:55.000Z',
   'archiveRetentionTime': '2026-12-09T17:26:55.000Z',
   'dateOfPublishing': '2019-12-09T17:26:55.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T17:26:55.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0112',
  'pid': '20.500.12269/BRIGHTNESS/NMX0112'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_147_Sisi_G_3300V_D_3926V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 970417968,
  'packedSize': 970417968,
  'creationTime': '2016-12-09T17:19:26.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 111',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:09.884Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T17:19:26.000Z',
   'archiveRetentionTime': '2026-12-09T17:19:26.000Z',
   'dateOfPublishing': '2019-12-09T17:19:26.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T17:19:26.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0111',
  'pid': '20.500.12269/BRIGHTNESS/NMX0111'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_145_Sisi_G_3240V_D_3282V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 896310257,
  'packedSize': 896310257,
  'creationTime': '2016-12-09T17:11:57.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 110',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:09.733Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T17:11:57.000Z',
   'archiveRetentionTime': '2026-12-09T17:11:57.000Z',
   'dateOfPublishing': '2019-12-09T17:11:57.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T17:11:57.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0110',
  'pid': '20.500.12269/BRIGHTNESS/NMX0110'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_144_Sisi_G_3240V_D_3582V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 920018292,
  'packedSize': 920018292,
  'creationTime': '2016-12-09T17:04:38.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 107',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:09.605Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T17:04:38.000Z',
   'archiveRetentionTime': '2026-12-09T17:04:38.000Z',
   'dateOfPublishing': '2019-12-09T17:04:38.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T17:04:38.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0107',
  'pid': '20.500.12269/BRIGHTNESS/NMX0107'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_143_Sisi_G_3240V_D_3882V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 918429081,
  'packedSize': 918429081,
  'creationTime': '2016-12-09T16:57:14.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 106',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:09.433Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T16:57:14.000Z',
   'archiveRetentionTime': '2026-12-09T16:57:14.000Z',
   'dateOfPublishing': '2019-12-09T16:57:14.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T16:57:14.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0106',
  'pid': '20.500.12269/BRIGHTNESS/NMX0106'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_142_Sisi_G_3270V_D_3304V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 926511307,
  'packedSize': 926511307,
  'creationTime': '2016-12-09T16:49:49.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 105',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:09.214Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T16:49:49.000Z',
   'archiveRetentionTime': '2026-12-09T16:49:49.000Z',
   'dateOfPublishing': '2019-12-09T16:49:49.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T16:49:49.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0105',
  'pid': '20.500.12269/BRIGHTNESS/NMX0105'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_141_Sisi_G_3270V_D_3604V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 949021610,
  'packedSize': 949021610,
  'creationTime': '2016-12-09T16:42:29.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 104',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:08.993Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T16:42:29.000Z',
   'archiveRetentionTime': '2026-12-09T16:42:29.000Z',
   'dateOfPublishing': '2019-12-09T16:42:29.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T16:42:29.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0104',
  'pid': '20.500.12269/BRIGHTNESS/NMX0104'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_140_Sisi_G_3270V_D_3904V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 943297371,
  'packedSize': 943297371,
  'creationTime': '2016-12-09T16:34:58.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 103',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:08.787Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T16:34:58.000Z',
   'archiveRetentionTime': '2026-12-09T16:34:58.000Z',
   'dateOfPublishing': '2019-12-09T16:34:58.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T16:34:58.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0103',
  'pid': '20.500.12269/BRIGHTNESS/NMX0103'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_139_Sisi_G_3300V_D_3326V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 963184119,
  'packedSize': 963184119,
  'creationTime': '2016-12-09T16:27:30.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 102',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:08.597Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T16:27:30.000Z',
   'archiveRetentionTime': '2026-12-09T16:27:30.000Z',
   'dateOfPublishing': '2019-12-09T16:27:30.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T16:27:30.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0102',
  'pid': '20.500.12269/BRIGHTNESS/NMX0102'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_138_Sisi_G_3300V_D_3626V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 998203085,
  'packedSize': 998203085,
  'creationTime': '2016-12-09T16:20:01.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 101',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:08.435Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T16:20:01.000Z',
   'archiveRetentionTime': '2026-12-09T16:20:01.000Z',
   'dateOfPublishing': '2019-12-09T16:20:01.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T16:20:01.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0101',
  'pid': '20.500.12269/BRIGHTNESS/NMX0101'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_136_Sisi_G_3300V_D_3926V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 1001230152,
  'packedSize': 1001230152,
  'creationTime': '2016-12-09T16:12:27.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 100',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:08.226Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T16:12:27.000Z',
   'archiveRetentionTime': '2026-12-09T16:12:27.000Z',
   'dateOfPublishing': '2019-12-09T16:12:27.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T16:12:27.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0100',
  'pid': '20.500.12269/BRIGHTNESS/NMX0100'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_135_Sisi_G_3330V_D_3348V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 966133790,
  'packedSize': 966133790,
  'creationTime': '2016-12-09T16:04:56.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 77',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:08.034Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T16:04:56.000Z',
   'archiveRetentionTime': '2026-12-09T16:04:56.000Z',
   'dateOfPublishing': '2019-12-09T16:04:56.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T16:04:56.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0077',
  'pid': '20.500.12269/BRIGHTNESS/NMX0077'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_134_Sisi_G_3330V_D_3648V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 999595160,
  'packedSize': 999595160,
  'creationTime': '2016-12-09T15:57:30.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 76',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:07.812Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T15:57:30.000Z',
   'archiveRetentionTime': '2026-12-09T15:57:30.000Z',
   'dateOfPublishing': '2019-12-09T15:57:30.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T15:57:30.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0076',
  'pid': '20.500.12269/BRIGHTNESS/NMX0076'},
 {'owner': 'Dorothea Pfeiffer',
  'ownerEmail': 'Dorothea.Pfeiffer@esss.se',
  'orcidOfOwner': 'https://orcid.org/0000-0003-3893-2308',
  'contactEmail': 'Dorothea.Pfeiffer@esss.se',
  'sourceFolder': '/users/detector/experiments/nmx/data/h5/raw/IFE_2016_Nov/Calibration/run_132_Sisi_G_3330V_D_3948V_back_2p00A_unf_APZ_280_cal.h5',
  'size': 997198063,
  'packedSize': 997198063,
  'creationTime': '2016-12-09T15:50:01.000Z',
  'type': 'raw',
  'validationStatus': 'valid',
  'keywords': ['NMX', 'neutron', 'detector'],
  'description': 'This data was collected as part of BrightnESS, funded by the European Union                         Framework Programme for Research and Innovation Horizon 2020, under grant                         agreement 676548. It consists of test data for the detector. https://github.com/ess-dmsc/ess_file_formats/wiki/NMX',
  'datasetName': 'Sample Data from NMX 75',
  'license': 'ESS',
  'version': '3.01',
  'isPublished': True,
  'ownerGroup': 'ess',
  'accessGroups': ['brightness', 'ess'],
  'updatedBy': 'ingestor',
  'updatedAt': '2019-04-30T11:50:07.634Z',
  'datasetlifecycle': {'archivable': True,
   'retrievable': False,
   'dateOfDiskPurging': '2026-12-09T15:50:01.000Z',
   'archiveRetentionTime': '2026-12-09T15:50:01.000Z',
   'dateOfPublishing': '2019-12-09T15:50:01.000Z',
   'archiveStatusMessage': 'Stored on primary disk and on tape',
   'retrieveStatusMessage': 'string',
   'archiveReturnMessage': {'string': 'string'},
   'retrieveReturnMessage': {'string': 'string'},
   'exportedTo': 'string'},
  'principalInvestigator': 'Dorothea Pfeiffer',
  'creationLocation': 'NMX',
  'scientificMetadata': {'id': 3, 'datetime': '2019-04-30T11:49:36.672Z'},
  'endTime': '2016-12-09T15:50:01.000Z',
  'proposalId': '2LG2QT',
  'sampleId': 'samplenmx0075',
  'pid': '20.500.12269/BRIGHTNESS/NMX0075'}]
The results list can be indexed for the file location (for example)
In [39]:
print(results[0]["sourceFolder"])
/users/detector/experiments/beamInstrumentation/FMC-PICO-evaluation
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [127]:
 
In [ ]:
 
In [ ]:

In [ ]: